home *** CD-ROM | disk | FTP | other *** search
- /*
- File: TestAllocLinkedList.h
-
- Contains: Declaration for TTestAllocLinkedList class
-
- Copyright: © 1991-1994 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #ifndef __TESTALLOCLINKEDLIST__
- #define __TESTALLOCLINKEDLIST__
-
- #ifndef __TESTLINKEDLIST__
- #include "TestLinkedList.h"
- #endif
-
- #define kTTestAllocLinkedListID kTestToolPrefix "TTestAllocLinkedList,1.2"
-
- class TTestAllocLinkedList : public TTestLinkedList
- {
- public:
- _CDECL TTestAllocLinkedList();
- virtual ~_CDECL TTestAllocLinkedList();
-
- virtual void _CDECL InitTest(BooleanParm verbose, BooleanParm debug, int, char**);
- virtual void _CDECL RunTestIteration(BooleanParm verbose, BooleanParm debug);
- virtual void _CDECL EndTest(BooleanParm verbose, BooleanParm debug);
- };
-
- #endif
-